home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / wp / cgatwp21.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1992-10-01  |  1KB  |  33 lines

  1. @REM INSTALL.BAT; JLS 10/92
  2. @echo off
  3. cls
  4. if "%1"=="" goto info
  5. if "%2"=="" goto info
  6. ECHO Macro Files for GRAPHCAT 2.1 FOR WP/DOS will now
  7. ECHO be copied to %2 and all other files to %1.
  8. ECHO ...
  9. ECHO Press any key to proceed with installation, or Control-C to stop now.
  10. pause > nul
  11. copy *.wpm %2
  12. md %1
  13. copy *.* %1\*.*
  14. ECHO Done...
  15. ECHO If you haven't already,
  16. ECHO type PRINTDOC for instructions on printing the manual.
  17. goto end
  18. :info
  19. ECHO Start INSTALL.BAT with the new directory name to make for
  20. ECHO storing the GRAPHCAT docs and samples, and the name of the 
  21. ECHO macro directory used by WordPerfect, usually c:\wp51\wpm or c:\wp51.
  22. ECHO ...
  23. ECHO If you don't know where WordPerfect keeps your macros, look in 
  24. ECHO Setup (Shift-F1), (6) Location of Files, and write down the entry
  25. ECHO under (2) Keyboard/Macro Files and enter it from the DOS prompt.
  26. ECHO (Press Cancel (F1) twice to return to the document screen.)
  27. ECHO ...
  28. ECHO For example: 
  29. ECHO INSTALL c:\graphcat c:\wp51
  30. ECHO (Copies package to c:\graphcat, using c:\wp51 for WP/DOS macros.)
  31. ECHO INSTALL c:\graphcat d:\wp51\wpm
  32. ECHO (Copies package to c:\graphcat, using d:\wp51\wpm for WP/DOS macros.)
  33. :end